-
Notifications
You must be signed in to change notification settings - Fork 349
ci: Split platform matrix in zephyr.yml workflow #10482
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
b90132c to
86a1c33
Compare
|
Hopefully see more green in CI results with this. |
86a1c33 to
852025c
Compare
f3aede3 to
b9be260
Compare
Separates platform entries in the configuration array to reduce reduce the number of platfroms run per runner as we are approaching size limits from building too many at a time. Signed-off-by: Christopher Turner <[email protected]>
b9be260 to
d9a7ce8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR splits platform matrix entries in the Zephyr CI workflow to reduce the number of platforms built per runner, addressing size limits from building too many platforms simultaneously.
Changes:
- Split grouped platform entries in IPC_platforms matrix into separate lines
- Split grouped platform entries in platforms matrix into separate lines
- Updated test validation logic to match the new platform split
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| # Temporary testbed for Zephyr development. | ||
| tgl tgl-h, | ||
| tgl, | ||
| tgl-h |
Copilot
AI
Jan 14, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing trailing comma after 'tgl-h'. This inconsistency with other array entries could cause parsing issues.
| tgl-h | |
| tgl-h, |
| # legacy | ||
| tgl tgl-h, | ||
| tgl, | ||
| tgl-h |
Copilot
AI
Jan 14, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing trailing comma after 'tgl-h'. This inconsistency with other array entries could cause parsing issues.
kv2019i
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @cgturner1 !
|
The Jenkins CI build fail https://sof-ci.01.org/sofpr/PR10482/build18513/build/index.html is not realted to this PR, ignoring that and merging. |
Separates platform entries in the configuration array to reduce reduce the number of platfroms run per runner as we are approaching size limits from building too many at a time.
Signed-off-by: Christopher Turner [email protected]